home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / run_control.e < prev    next >
Text File  |  2000-03-25  |  7KB  |  303 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class RUN_CONTROL
  17.    --
  18.    -- Singleton object in charge of Eiffel run time options..
  19.    --
  20.  
  21. inherit GLOBALS;
  22.  
  23. creation make
  24.  
  25. feature {NONE} -- Numbering of levels is that of E.T.L. (pp 133) :
  26.  
  27.    level: INTEGER;
  28.          -- Actual level of checking;
  29.  
  30.    level_no: INTEGER is -5;
  31.          -- No assertion checking of any kind.
  32.  
  33.    level_require: INTEGER is -4;
  34.          -- Evaluate the preconditions.
  35.  
  36.    level_ensure: INTEGER is -3;
  37.          -- Also evaluate postconditions.
  38.  
  39.    level_invariant: INTEGER is -2;
  40.          -- Also evaluate the class invariant on entry to and return from.
  41.  
  42.    level_loop: INTEGER is -1;
  43.          -- Also evaluate the loop variant and the loop invariant.
  44.  
  45.    level_check_all: INTEGER is 0;
  46.          -- Also evaluate the check instruction.
  47.          -- The default value.
  48.  
  49.    level_check_debug: INTEGER is 1;
  50.          -- Also evaluate the debug instruction.
  51.  
  52.    level_boost: INTEGER is -6;
  53.          -- BOOST :-). Very very speed level.
  54.          -- Do not check for Void target.
  55.          -- Do not check system level validity.
  56.  
  57.    make is
  58.       do
  59.       end;
  60.  
  61. feature  -- Consultation :
  62.  
  63.    trace: BOOLEAN;
  64.          -- Code generated with the -trace flag mode.
  65.  
  66.    boost: BOOLEAN is
  67.       do
  68.          Result := level = level_boost;
  69.       end;
  70.  
  71.    no_check: BOOLEAN is
  72.       do
  73.          Result := level >= level_no;
  74.       end;
  75.  
  76.    require_check: BOOLEAN is
  77.       do
  78.          Result := level >= level_require;
  79.       end;
  80.  
  81.    ensure_check: BOOLEAN is
  82.       do
  83.          Result := level >= level_ensure;
  84.       end;
  85.  
  86.    invariant_check: BOOLEAN is
  87.       do
  88.          Result := level >= level_invariant;
  89.       end;
  90.  
  91.    loop_check: BOOLEAN is
  92.       do
  93.          Result := level >= level_loop;
  94.       end;
  95.  
  96.    all_check: BOOLEAN is
  97.       do
  98.          Result := level >= level_check_all;
  99.       end;
  100.  
  101.    debug_check: BOOLEAN is
  102.       do
  103.          Result := level = level_check_debug;
  104.       end;
  105.  
  106.    root_class: STRING;
  107.          -- Name of the root class using only upper case letter.
  108.  
  109.    root_procedure: STRING is
  110.          -- Name of the root procedure.
  111.       do
  112.          Result := root_procedure_memory;
  113.          if Result = Void then
  114.             Result := as_make;
  115.          end;
  116.       end;
  117.  
  118. feature
  119.  
  120.    compute_root_class(command_line_name: STRING) is
  121.          -- Create and compute the `root_class' name using the `command_line_name'
  122.          -- as a model.
  123.          -- Trailing Eiffel file suffix is removed if any.
  124.          -- Leading path is also removed if any.
  125.          -- Finally, the feature `to_upper' is applied.
  126.       require
  127.          not command_line_name.is_empty
  128.       local
  129.          i: INTEGER;
  130.          c: CHARACTER;
  131.       do
  132.          root_class := command_line_name.twin;
  133.          if root_class.has_suffix(eiffel_suffix) then
  134.             root_class.remove_last(2);
  135.          end;
  136.          from
  137.             i := root_class.count;
  138.          until
  139.             i = 0
  140.          loop
  141.             c := root_class.item(i);
  142.             if c.is_letter then
  143.                i := i - 1;
  144.             elseif c = '_' then
  145.                i := i - 1;
  146.             elseif c.is_digit then
  147.                i := i - 1;
  148.             else
  149.                root_class.remove_first(i);
  150.                i := 0;
  151.             end;
  152.          end;
  153.          root_class.to_upper;
  154.          root_class := string_aliaser.item(root_class);
  155.       ensure
  156.          root_class /= command_line_name;
  157.          root_class = string_aliaser.item(root_class);
  158.          not root_class.has_suffix(eiffel_suffix)
  159.       end;
  160.  
  161. feature
  162.  
  163.    generating_type_used: BOOLEAN;
  164.          -- When GENERAL `generating_type' is used.
  165.  
  166.    generator_used: BOOLEAN;
  167.          -- When GENERAL `generator' is used.
  168.  
  169.    deep_twin_used: BOOLEAN;
  170.      -- When GENERAL `deep_twin' is used.
  171.  
  172.    is_deep_equal_used: BOOLEAN;
  173.      -- When GENERAL `is_deep_equal' is used.
  174.  
  175. feature -- Setting :
  176.  
  177.    set_boost is
  178.       do
  179.          level := level_boost;
  180.       end;
  181.  
  182.    set_no_check is
  183.       do
  184.          level := level_no;
  185.       end;
  186.  
  187.    set_require_check is
  188.       do
  189.          level := level_require;
  190.       end;
  191.  
  192.    set_ensure_check is
  193.       do
  194.          level := level_ensure;
  195.       end;
  196.  
  197.    set_invariant_check is
  198.       do
  199.          level := level_invariant;
  200.       end;
  201.  
  202.    set_loop_check is
  203.       do
  204.          level := level_loop;
  205.       end;
  206.  
  207.    set_all_check is
  208.       do
  209.          level := level_check_all;
  210.       end;
  211.  
  212.    set_debug_check is
  213.       do
  214.          level := level_check_debug;
  215.       end;
  216.  
  217.    set_trace is
  218.       do
  219.          trace := true;
  220.       end;
  221.  
  222. feature
  223.  
  224.    set_generating_type_used is
  225.       do
  226.          generating_type_used := true;
  227.       end;
  228.  
  229.    set_generator_used is
  230.       do
  231.          generator_used := true;
  232.       end;
  233.  
  234. feature {RUN_FEATURE_8}
  235.  
  236.    set_deep_twin_used is
  237.       do
  238.          deep_twin_used := true;
  239.       end;
  240.  
  241.    set_is_deep_equal_used is
  242.       do
  243.      set_deep_twin_used;
  244.          is_deep_equal_used := true;
  245.       end;
  246.  
  247. feature -- Other settings :
  248.  
  249.    set_cecil_path(path: STRING) is
  250.       do
  251.          cecil_path := path;
  252.       ensure
  253.          cecil_path = path
  254.       end;
  255.  
  256.    cecil_path: STRING;
  257.          -- Not Void when option -cecil used.
  258.  
  259.    set_root_procedure(rp: STRING) is
  260.       do
  261.          root_procedure_memory := rp;
  262.       ensure
  263.          root_procedure = rp
  264.       end;
  265.  
  266.    output_name: STRING;
  267.          -- The executable `ouuput_name'. A Void value means that "a.out" 
  268.          -- is to be used for C mode while using gcc for example.For 
  269.          -- the Java byte-code this name is used as the name of the main 
  270.          -- output class file and as the name of the directory used to 
  271.          -- store auxilliary class files.
  272.  
  273. feature {COMPILE_TO_C, COMPILE_TO_JVM, INSTALL}
  274.  
  275.    set_output_name(name: STRING) is
  276.       require
  277.          source_file_protection: not name.has_suffix(".e")
  278.       do
  279.          output_name := name;
  280.       ensure
  281.          output_name = name
  282.       end;
  283.  
  284. feature {NONE}
  285.  
  286.    root_procedure_memory: STRING;
  287.  
  288.    singleton_memory: RUN_CONTROL is
  289.       once
  290.          Result := Current;
  291.       end;
  292.  
  293. invariant
  294.  
  295.    is_real_singleton: Current = singleton_memory;
  296.  
  297.    level_boost <= level ;
  298.  
  299.    level <= level_check_debug;
  300.  
  301. end -- RUN_CONTROL
  302.  
  303.